home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / util / misc / cookietool.lha / cookietool / makefile < prev    next >
Makefile  |  1997-10-26  |  460b  |  23 lines

  1. targets   = cookietool cdbsplit 
  2. objects   = cookietool.o cdbsplit.o strstuff.o
  3. CC        = gcc
  4. CFLAGS    = -O2 -Wall
  5. LOADLIBES = -noixemul
  6.  
  7. all : $(targets) ;
  8.          
  9. strstuff.o : strstuff.c strstuff.h
  10.  
  11. cookietool   : cookietool.o strstuff.o
  12. cookietool.o : cookietool.c strstuff.h
  13.                                   
  14. cdbsplit   : cdbsplit.o strstuff.o
  15. cdbsplit.o : cdbsplit.c strstuff.h
  16.  
  17. clean :
  18.     delete $(targets) $(objects)
  19.  
  20. install :
  21.     copy $(targets) c:
  22.  
  23.